SftTree/OCX 7.0

SftTreeItem.MaxHeightPix Property

Softel vdm, Inc.

Defines the maximum height of the item.

Syntax       

Get

VB.NET

MaxPix = object.MaxHeightPix  As Integer

VB

MaxPix = object.MaxHeightPix  As Long

C#.NET

int MaxPix = object.MaxHeightPix;

VC++

long MaxPix = object->MaxHeightPix;
long MaxPix = object->GetMaxHeightPix();

C

HRESULT object->get_MaxHeightPix(long* MaxPix);

Delphi

MaxPix := object.MaxHeightPix   : Integer;

Put

VB.NET

object.MaxHeightPix = MaxPix  As Integer

VB

object.MaxHeightPix = MaxPix  As Long

C#.NET

int object.MaxHeightPix = MaxPix;

VC++

long object->MaxHeightPix = MaxPix;
void object->PutMaxHeightPix(long MaxPix);

C

HRESULT object->put_MaxHeightPix(long MaxPix);

Delphi

object.MaxHeightPix := MaxPix   : Integer;

object

A SftTreeItem object.

MaxPix

Defines the maximum height of the item in pixels.  If 0 is specified, the item uses the height required, so the item is not clipped vertically.

Comments

The MaxHeightPix property defines the maximum height of the item.

If the item is larger than the defined maximum height, is is truncated and clipped.

This property has no effect when fixed height items are used (see Items.Style).  The Items.MinHeightPix and Items.MaxHeightPix properties can be used for fixed height items to define the minimum and maximum height for all item.

The Items.Lines property can be used to define the number of text lines used for item height calculation.

The Item.MinHeightPix property defines the minimum height of an item.

See Also  SftTreeItem Object | Object Hierarchy


Feedback / comments / error reports for this topic
© 2015 - Softel vdm, Inc. - www.softelvdm.com